home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / bin / h2ph < prev    next >
Text File  |  2006-04-25  |  27KB  |  918 lines

  1. #!/usr/bin/perl
  2.     eval 'exec /usr/bin/perl -S $0 ${1+"$@"}'
  3.     if $running_under_some_shell;
  4.  
  5. use strict;
  6.  
  7. use Config;
  8. use File::Path qw(mkpath);
  9. use Getopt::Std;
  10.  
  11. # Make sure read permissions for all are set:
  12. if (defined umask && (umask() & 0444)) {
  13.     umask (umask() & ~0444);
  14. }
  15.  
  16. getopts('Dd:rlhaQe');
  17. use vars qw($opt_D $opt_d $opt_r $opt_l $opt_h $opt_a $opt_Q $opt_e);
  18. die "-r and -a options are mutually exclusive\n" if ($opt_r and $opt_a);
  19. my @inc_dirs = inc_dirs() if $opt_a;
  20.  
  21. my $Exit = 0;
  22.  
  23. my $Dest_dir = $opt_d || $Config{installsitearch};
  24. die "Destination directory $Dest_dir doesn't exist or isn't a directory\n"
  25.     unless -d $Dest_dir;
  26.  
  27. my @isatype = qw(
  28.     char    uchar    u_char
  29.     short    ushort    u_short
  30.     int    uint    u_int
  31.     long    ulong    u_long
  32.     FILE    key_t    caddr_t
  33.     float    double    size_t
  34. );
  35.  
  36. my %isatype;
  37. @isatype{@isatype} = (1) x @isatype;
  38. my $inif = 0;
  39. my %Is_converted;
  40. my %bad_file = ();
  41.  
  42. @ARGV = ('-') unless @ARGV;
  43.  
  44. build_preamble_if_necessary();
  45.  
  46. sub reindent($) {
  47.     my($text) = shift;
  48.     $text =~ s/\n/\n    /g;
  49.     $text =~ s/        /\t/g;
  50.     $text;
  51. }
  52.  
  53. my ($t, $tab, %curargs, $new, $eval_index, $dir, $name, $args, $outfile);
  54. my ($incl, $incl_type, $next);
  55. while (defined (my $file = next_file())) {
  56.     if (-l $file and -d $file) {
  57.         link_if_possible($file) if ($opt_l);
  58.         next;
  59.     }
  60.  
  61.     # Recover from header files with unbalanced cpp directives
  62.     $t = '';
  63.     $tab = 0;
  64.  
  65.     # $eval_index goes into ``#line'' directives, to help locate syntax errors:
  66.     $eval_index = 1;
  67.  
  68.     if ($file eq '-') {
  69.     open(IN, "-");
  70.     open(OUT, ">-");
  71.     } else {
  72.     ($outfile = $file) =~ s/\.h$/.ph/ || next;
  73.     print "$file -> $outfile\n" unless $opt_Q;
  74.     if ($file =~ m|^(.*)/|) {
  75.         $dir = $1;
  76.         mkpath "$Dest_dir/$dir";
  77.     }
  78.  
  79.     if ($opt_a) { # automagic mode:  locate header file in @inc_dirs
  80.         foreach (@inc_dirs) {
  81.         chdir $_;
  82.         last if -f $file;
  83.         }
  84.     }
  85.  
  86.     open(IN,"$file") || (($Exit = 1),(warn "Can't open $file: $!\n"),next);
  87.     open(OUT,">$Dest_dir/$outfile") || die "Can't create $outfile: $!\n";
  88.     }
  89.  
  90.     print OUT
  91.         "require '_h2ph_pre.ph';\n\n",
  92.         "no warnings 'redefine';\n\n";
  93.  
  94.     while (defined (local $_ = next_line($file))) {
  95.     if (s/^\s*\#\s*//) {
  96.         if (s/^define\s+(\w+)//) {
  97.         $name = $1;
  98.         $new = '';
  99.         s/\s+$//;
  100.         s/\(\w+\s*\(\*\)\s*\(\w*\)\)\s*(-?\d+)/$1/; # (int (*)(foo_t))0
  101.         if (s/^\(([\w,\s]*)\)//) {
  102.             $args = $1;
  103.             my $proto = '() ';
  104.             if ($args ne '') {
  105.             $proto = '';
  106.             foreach my $arg (split(/,\s*/,$args)) {
  107.                 $arg =~ s/^\s*([^\s].*[^\s])\s*$/$1/;
  108.                 $curargs{$arg} = 1;
  109.             }
  110.             $args =~ s/\b(\w)/\$$1/g;
  111.             $args = "my($args) = \@_;\n$t    ";
  112.             }
  113.             s/^\s+//;
  114.             expr();
  115.             $new =~ s/(["\\])/\\$1/g;       #"]);
  116.           EMIT:
  117.             $new = reindent($new);
  118.             $args = reindent($args);
  119.             if ($t ne '') {
  120.             $new =~ s/(['\\])/\\$1/g;   #']);
  121.             if ($opt_h) {
  122.                 print OUT $t,
  123.                             "eval \"\\n#line $eval_index $outfile\\n\" . 'sub $name $proto\{\n$t    ${args}eval q($new);\n$t}' unless defined(\&$name);\n";
  124.                             $eval_index++;
  125.             } else {
  126.                 print OUT $t,
  127.                             "eval 'sub $name $proto\{\n$t    ${args}eval q($new);\n$t}' unless defined(\&$name);\n";
  128.             }
  129.             } else {
  130.                       print OUT "unless(defined(\&$name)) {\n    sub $name $proto\{\n\t${args}eval q($new);\n    }\n}\n";
  131.             }
  132.             %curargs = ();
  133.         } else {
  134.             s/^\s+//;
  135.             expr();
  136.             $new = 1 if $new eq '';
  137.             $new = reindent($new);
  138.             $args = reindent($args);
  139.             if ($t ne '') {
  140.             $new =~ s/(['\\])/\\$1/g;        #']);
  141.  
  142.             if ($opt_h) {
  143.                 print OUT $t,"eval \"\\n#line $eval_index $outfile\\n\" . 'sub $name () {",$new,";}' unless defined(\&$name);\n";
  144.                 $eval_index++;
  145.             } else {
  146.                 print OUT $t,"eval 'sub $name () {",$new,";}' unless defined(\&$name);\n";
  147.             }
  148.             } else {
  149.                 # Shunt around such directives as `#define FOO FOO':
  150.                 next if " \&$name" eq $new;
  151.  
  152.                       print OUT $t,"unless(defined(\&$name)) {\n    sub $name () {\t",$new,";}\n}\n";
  153.             }
  154.         }
  155.         } elsif (/^(include|import|include_next)\s*[<\"](.*)[>\"]/) {
  156.                 $incl_type = $1;
  157.                 $incl = $2;
  158.                 if (($incl_type eq 'include_next') ||
  159.                     ($opt_e && exists($bad_file{$incl}))) {
  160.                     $incl =~ s/\.h$/.ph/;
  161.         print OUT ($t,
  162.                "eval {\n");
  163.                 $tab += 4;
  164.                 $t = "\t" x ($tab / 8) . ' ' x ($tab % 8);
  165.                     print OUT ($t, "my(\@REM);\n");
  166.                     if ($incl_type eq 'include_next') {
  167.         print OUT ($t,
  168.                "my(\%INCD) = map { \$INC{\$_} => 1 } ",
  169.                        "(grep { \$_ eq \"$incl\" } ",
  170.                                    "keys(\%INC));\n");
  171.         print OUT ($t,
  172.                        "\@REM = map { \"\$_/$incl\" } ",
  173.                "(grep { not exists(\$INCD{\"\$_/$incl\"})",
  174.                        " and -f \"\$_/$incl\" } \@INC);\n");
  175.                     } else {
  176.                         print OUT ($t,
  177.                                    "\@REM = map { \"\$_/$incl\" } ",
  178.                                    "(grep {-r \"\$_/$incl\" } \@INC);\n");
  179.                     }
  180.         print OUT ($t,
  181.                "require \"\$REM[0]\" if \@REM;\n");
  182.                 $tab -= 4;
  183.                 $t = "\t" x ($tab / 8) . ' ' x ($tab % 8);
  184.                 print OUT ($t,
  185.                "};\n");
  186.         print OUT ($t,
  187.                "warn(\$\@) if \$\@;\n");
  188.                 } else {
  189.                     $incl =~ s/\.h$/.ph/;
  190.             print OUT $t,"require '$incl';\n";
  191.                 }
  192.         } elsif (/^ifdef\s+(\w+)/) {
  193.         print OUT $t,"if(defined(&$1)) {\n";
  194.         $tab += 4;
  195.         $t = "\t" x ($tab / 8) . ' ' x ($tab % 8);
  196.         } elsif (/^ifndef\s+(\w+)/) {
  197.         print OUT $t,"unless(defined(&$1)) {\n";
  198.         $tab += 4;
  199.         $t = "\t" x ($tab / 8) . ' ' x ($tab % 8);
  200.         } elsif (s/^if\s+//) {
  201.         $new = '';
  202.         $inif = 1;
  203.         expr();
  204.         $inif = 0;
  205.         print OUT $t,"if($new) {\n";
  206.         $tab += 4;
  207.         $t = "\t" x ($tab / 8) . ' ' x ($tab % 8);
  208.         } elsif (s/^elif\s+//) {
  209.         $new = '';
  210.         $inif = 1;
  211.         expr();
  212.         $inif = 0;
  213.         $tab -= 4;
  214.         $t = "\t" x ($tab / 8) . ' ' x ($tab % 8);
  215.         print OUT $t,"}\n elsif($new) {\n";
  216.         $tab += 4;
  217.         $t = "\t" x ($tab / 8) . ' ' x ($tab % 8);
  218.         } elsif (/^else/) {
  219.         $tab -= 4;
  220.         $t = "\t" x ($tab / 8) . ' ' x ($tab % 8);
  221.         print OUT $t,"} else {\n";
  222.         $tab += 4;
  223.         $t = "\t" x ($tab / 8) . ' ' x ($tab % 8);
  224.         } elsif (/^endif/) {
  225.         $tab -= 4;
  226.         $t = "\t" x ($tab / 8) . ' ' x ($tab % 8);
  227.         print OUT $t,"}\n";
  228.         } elsif(/^undef\s+(\w+)/) {
  229.         print OUT $t, "undef(&$1) if defined(&$1);\n";
  230.         } elsif(/^error\s+(".*")/) {
  231.         print OUT $t, "die($1);\n";
  232.         } elsif(/^error\s+(.*)/) {
  233.         print OUT $t, "die(\"", quotemeta($1), "\");\n";
  234.         } elsif(/^warning\s+(.*)/) {
  235.         print OUT $t, "warn(\"", quotemeta($1), "\");\n";
  236.         } elsif(/^ident\s+(.*)/) {
  237.         print OUT $t, "# $1\n";
  238.         }
  239.     } elsif (/^\s*(typedef\s*)?enum\s*(\s+[a-zA-Z_]\w*\s*)?/) { # { for vi
  240.         until(/\{[^}]*\}.*;/ || /;/) {
  241.         last unless defined ($next = next_line($file));
  242.         chomp $next;
  243.         # drop "#define FOO FOO" in enums
  244.         $next =~ s/^\s*#\s*define\s+(\w+)\s+\1\s*$//;
  245.         # #defines in enums (aliases)
  246.         $next =~ s/^\s*#\s*define\s+(\w+)\s+(\w+)\s*$/$1 = $2,/;
  247.         $_ .= $next;
  248.         print OUT "# $next\n" if $opt_D;
  249.         }
  250.         s/#\s*if.*?#\s*endif//g; # drop #ifdefs
  251.         s@/\*.*?\*/@@g;
  252.         s/\s+/ /g;
  253.         next unless /^\s?(typedef\s?)?enum\s?([a-zA-Z_]\w*)?\s?\{(.*)\}\s?([a-zA-Z_]\w*)?\s?;/;
  254.         (my $enum_subs = $3) =~ s/\s//g;
  255.         my @enum_subs = split(/,/, $enum_subs);
  256.         my $enum_val = -1;
  257.         foreach my $enum (@enum_subs) {
  258.         my ($enum_name, $enum_value) = $enum =~ /^([a-zA-Z_]\w*)(=.+)?$/;
  259.         $enum_name or next;
  260.         $enum_value =~ s/^=//;
  261.         $enum_val = (length($enum_value) ? $enum_value : $enum_val + 1);
  262.         if ($opt_h) {
  263.             print OUT ($t,
  264.                    "eval(\"\\n#line $eval_index $outfile\\n",
  265.                    "sub $enum_name () \{ $enum_val; \}\") ",
  266.                    "unless defined(\&$enum_name);\n");
  267.             ++ $eval_index;
  268.         } else {
  269.             print OUT ($t,
  270.                    "eval(\"sub $enum_name () \{ $enum_val; \}\") ",
  271.                    "unless defined(\&$enum_name);\n");
  272.         }
  273.         }
  274.     } elsif (/^(?:__extension__\s+)?(?:extern|static)\s+(?:__)?inline(?:__)?\s+/
  275.         and !/;\s*$/ and !/{\s*}\s*$/)
  276.     { # { for vi
  277.         # This is a hack to parse the inline functions in the glibc headers.
  278.         # Warning: massive kludge ahead. We suppose inline functions
  279.         # are mainly constructed like macros.
  280.         while (1) {
  281.         last unless defined ($next = next_line($file));
  282.         chomp $next;
  283.         undef $_, last if $next =~ /__THROW\s*;/
  284.                    or $next =~ /^(__extension__|extern|static)\b/;
  285.         $_ .= " $next";
  286.         print OUT "# $next\n" if $opt_D;
  287.         last if $next =~ /^}|^{.*}\s*$/;
  288.         }
  289.         next if not defined; # because it's only a prototype
  290.         s/\b(__extension__|extern|static|(?:__)?inline(?:__)?)\b//g;
  291.         # violently drop #ifdefs
  292.         s/#\s*if.*?#\s*endif//g
  293.         and print OUT "# some #ifdef were dropped here -- fill in the blanks\n";
  294.         if (s/^(?:\w|\s|\*)*\s(\w+)\s*//) {
  295.         $name = $1;
  296.         } else {
  297.         warn "name not found"; next; # shouldn't occur...
  298.         }
  299.         my @args;
  300.         if (s/^\(([^()]*)\)\s*(\w+\s*)*//) {
  301.         for my $arg (split /,/, $1) {
  302.             if ($arg =~ /(\w+)\s*$/) {
  303.             $curargs{$1} = 1;
  304.             push @args, $1;
  305.             }
  306.         }
  307.         }
  308.         $args = (
  309.         @args
  310.         ? "my(" . (join ',', map "\$$_", @args) . ") = \@_;\n$t    "
  311.         : ""
  312.         );
  313.         my $proto = @args ? '' : '() ';
  314.         $new = '';
  315.         s/\breturn\b//g; # "return" doesn't occur in macros usually...
  316.         expr();
  317.         # try to find and perlify local C variables
  318.         our @local_variables = (); # needs to be a our(): (?{...}) bug workaround
  319.         {
  320.         use re "eval";
  321.         my $typelist = join '|', keys %isatype;
  322.         $new =~ s['
  323.           (?:(?:un)?signed\s+)?
  324.           (?:long\s+)?
  325.           (?:$typelist)\s+
  326.           (\w+)
  327.           (?{ push @local_variables, $1 })
  328.           ']
  329.          [my \$$1]gx;
  330.         $new =~ s['
  331.           (?:(?:un)?signed\s+)?
  332.           (?:long\s+)?
  333.           (?:$typelist)\s+
  334.           ' \s+ &(\w+) \s* ;
  335.           (?{ push @local_variables, $1 })
  336.           ]
  337.          [my \$$1;]gx;
  338.          }
  339.         $new =~ s/&$_\b/\$$_/g for @local_variables;
  340.         $new =~ s/(["\\])/\\$1/g;       #"]);
  341.         # now that's almost like a macro (we hope)
  342.         goto EMIT;
  343.     }
  344.     }
  345.     $Is_converted{$file} = 1;
  346.     if ($opt_e && exists($bad_file{$file})) {
  347.         unlink($Dest_dir . '/' . $outfile);
  348.         $next = '';
  349.     } else {
  350.         print OUT "1;\n";
  351.     queue_includes_from($file) if $opt_a;
  352.     }
  353. }
  354.  
  355. if ($opt_e && (scalar(keys %bad_file) > 0)) {
  356.     warn "Was unable to convert the following files:\n";
  357.     warn "\t" . join("\n\t",sort(keys %bad_file)) . "\n";
  358. }
  359.  
  360. exit $Exit;
  361.  
  362. sub expr {
  363.     $new = '"(assembly code)"' and return if /\b__asm__\b/; # freak out.
  364.     my $joined_args;
  365.     if(keys(%curargs)) {
  366.     $joined_args = join('|', keys(%curargs));
  367.     }
  368.     while ($_ ne '') {
  369.     s/^\&\&// && do { $new .= " &&"; next;}; # handle && operator
  370.     s/^\&([\(a-z\)]+)/$1/i;    # hack for things that take the address of
  371.     s/^(\s+)//        && do {$new .= ' '; next;};
  372.     s/^0X([0-9A-F]+)[UL]*//i
  373.         && do {my $hex = $1;
  374.            $hex =~ s/^0+//;
  375.            if (length $hex > 8 && !$Config{use64bitint}) {
  376.                # Croak if nv_preserves_uv_bits < 64 ?
  377.                $new .=         hex(substr($hex, -8)) +
  378.                    2**32 * hex(substr($hex,  0, -8));
  379.                # The above will produce "errorneus" code
  380.                # if the hex constant was e.g. inside UINT64_C
  381.                # macro, but then again, h2ph is an approximation.
  382.            } else {
  383.                $new .= lc("0x$hex");
  384.            }
  385.            next;};
  386.     s/^(-?\d+\.\d+E[-+]?\d+)[FL]?//i    && do {$new .= $1; next;};
  387.     s/^(\d+)\s*[LU]*//i    && do {$new .= $1; next;};
  388.     s/^("(\\"|[^"])*")//    && do {$new .= $1; next;};
  389.     s/^'((\\"|[^"])*)'//    && do {
  390.         if ($curargs{$1}) {
  391.         $new .= "ord('\$$1')";
  392.         } else {
  393.         $new .= "ord('$1')";
  394.         }
  395.         next;
  396.     };
  397.         # replace "sizeof(foo)" with "{foo}"
  398.         # also, remove * (C dereference operator) to avoid perl syntax
  399.         # problems.  Where the %sizeof array comes from is anyone's
  400.         # guess (c2ph?), but this at least avoids fatal syntax errors.
  401.         # Behavior is undefined if sizeof() delimiters are unbalanced.
  402.         # This code was modified to able to handle constructs like this:
  403.         #   sizeof(*(p)), which appear in the HP-UX 10.01 header files.
  404.         s/^sizeof\s*\(// && do {
  405.             $new .= '$sizeof';
  406.             my $lvl = 1;  # already saw one open paren
  407.             # tack { on the front, and skip it in the loop
  408.             $_ = "{" . "$_";
  409.             my $index = 1;
  410.             # find balanced closing paren
  411.             while ($index <= length($_) && $lvl > 0) {
  412.                 $lvl++ if substr($_, $index, 1) eq "(";
  413.                 $lvl-- if substr($_, $index, 1) eq ")";
  414.                 $index++;
  415.             }
  416.             # tack } on the end, replacing )
  417.             substr($_, $index - 1, 1) = "}";
  418.             # remove pesky * operators within the sizeof argument
  419.             substr($_, 0, $index - 1) =~ s/\*//g;
  420.             next;
  421.         };
  422.     # Eliminate typedefs
  423.     /\(([\w\s]+)[\*\s]*\)\s*[\w\(]/ && do {
  424.         my $doit = 1;
  425.         foreach (split /\s+/, $1) {  # Make sure all the words are types,
  426.             unless($isatype{$_} or $_ eq 'struct' or $_ eq 'union'){
  427.             $doit = 0;
  428.             last;
  429.         }
  430.         }
  431.         if( $doit ){
  432.         s/\([\w\s]+[\*\s]*\)// && next;      # then eliminate them.
  433.         }
  434.     };
  435.     # struct/union member, including arrays:
  436.     s/^([_A-Z]\w*(\[[^\]]+\])?((\.|->)[_A-Z]\w*(\[[^\]]+\])?)+)//i && do {
  437.         my $id = $1;
  438.         $id =~ s/(\.|(->))([^\.\-]*)/->\{$3\}/g;
  439.         $id =~ s/\b([^\$])($joined_args)/$1\$$2/g if length($joined_args);
  440.         while($id =~ /\[\s*([^\$\&\d\]]+)\]/) {
  441.         my($index) = $1;
  442.         $index =~ s/\s//g;
  443.         if(exists($curargs{$index})) {
  444.             $index = "\$$index";
  445.         } else {
  446.             $index = "&$index";
  447.         }
  448.         $id =~ s/\[\s*([^\$\&\d\]]+)\]/[$index]/;
  449.         }
  450.         $new .= " (\$$id)";
  451.     };
  452.     s/^([_a-zA-Z]\w*)//    && do {
  453.         my $id = $1;
  454.         if ($id eq 'struct' || $id eq 'union') {
  455.         s/^\s+(\w+)//;
  456.         $id .= ' ' . $1;
  457.         $isatype{$id} = 1;
  458.         } elsif ($id =~ /^((un)?signed)|(long)|(short)$/) {
  459.         while (s/^\s+(\w+)//) { $id .= ' ' . $1; }
  460.         $isatype{$id} = 1;
  461.         }
  462.         if ($curargs{$id}) {
  463.         $new .= "\$$id";
  464.         $new .= '->' if /^[\[\{]/;
  465.         } elsif ($id eq 'defined') {
  466.         $new .= 'defined';
  467.         } elsif (/^\s*\(/) {
  468.         s/^\s*\((\w),/("$1",/ if $id =~ /^_IO[WR]*$/i;    # cheat
  469.         $new .= " &$id";
  470.         } elsif ($isatype{$id}) {
  471.         if ($new =~ /{\s*$/) {
  472.             $new .= "'$id'";
  473.         } elsif ($new =~ /\(\s*$/ && /^[\s*]*\)/) {
  474.             $new =~ s/\(\s*$//;
  475.             s/^[\s*]*\)//;
  476.         } else {
  477.             $new .= q(').$id.q(');
  478.         }
  479.         } else {
  480.         if ($inif && $new !~ /defined\s*\($/) {
  481.             $new .= '(defined(&' . $id . ') ? &' . $id . ' : 0)';
  482.         } elsif (/^\[/) {
  483.             $new .= " \$$id";
  484.         } else {
  485.             $new .= ' &' . $id;
  486.         }
  487.         }
  488.         next;
  489.     };
  490.     s/^(.)// && do { if ($1 ne '#') { $new .= $1; } next;};
  491.     }
  492. }
  493.  
  494.  
  495. sub next_line
  496. {
  497.     my $file = shift;
  498.     my ($in, $out);
  499.     my $pre_sub_tri_graphs = 1;
  500.  
  501.     READ: while (not eof IN) {
  502.         $in  .= <IN>;
  503.         chomp $in;
  504.         next unless length $in;
  505.  
  506.         while (length $in) {
  507.             if ($pre_sub_tri_graphs) {
  508.                 # Preprocess all tri-graphs
  509.                 # including things stuck in quoted string constants.
  510.                 $in =~ s/\?\?=/#/g;                         # | ??=|  #|
  511.                 $in =~ s/\?\?\!/|/g;                        # | ??!|  ||
  512.                 $in =~ s/\?\?'/^/g;                         # | ??'|  ^|
  513.                 $in =~ s/\?\?\(/[/g;                        # | ??(|  [|
  514.                 $in =~ s/\?\?\)/]/g;                        # | ??)|  ]|
  515.                 $in =~ s/\?\?\-/~/g;                        # | ??-|  ~|
  516.                 $in =~ s/\?\?\//\\/g;                       # | ??/|  \|
  517.                 $in =~ s/\?\?</{/g;                         # | ??<|  {|
  518.                 $in =~ s/\?\?>/}/g;                         # | ??>|  }|
  519.             }
  520.         if ($in =~ /^\#ifdef __LANGUAGE_PASCAL__/) {
  521.         # Tru64 disassembler.h evilness: mixed C and Pascal.
  522.         while (<IN>) {
  523.             last if /^\#endif/;
  524.         }
  525.         $in = "";
  526.         next READ;
  527.         }
  528.         if ($in =~ /^extern inline / && # Inlined assembler.
  529.         $^O eq 'linux' && $file =~ m!(?:^|/)asm/[^/]+\.h$!) {
  530.         while (<IN>) {
  531.             last if /^}/;
  532.         }
  533.         $in = "";
  534.         next READ;
  535.         }
  536.             if ($in =~ s/\\$//) {                           # \-newline
  537.                 $out    .= ' ';
  538.                 next READ;
  539.             } elsif ($in =~ s/^([^"'\\\/]+)//) {            # Passthrough
  540.                 $out    .= $1;
  541.             } elsif ($in =~ s/^(\\.)//) {                   # \...
  542.                 $out    .= $1;
  543.             } elsif ($in =~ /^'/) {                         # '...
  544.                 if ($in =~ s/^('(\\.|[^'\\])*')//) {
  545.                     $out    .= $1;
  546.                 } else {
  547.                     next READ;
  548.                 }
  549.             } elsif ($in =~ /^"/) {                         # "...
  550.                 if ($in =~ s/^("(\\.|[^"\\])*")//) {
  551.                     $out    .= $1;
  552.                 } else {
  553.                     next READ;
  554.                 }
  555.             } elsif ($in =~ s/^\/\/.*//) {                  # //...
  556.                 # fall through
  557.             } elsif ($in =~ m/^\/\*/) {                     # /*...
  558.                 # C comment removal adapted from perlfaq6:
  559.                 if ($in =~ s/^\/\*[^*]*\*+([^\/*][^*]*\*+)*\///) {
  560.                     $out    .= ' ';
  561.                 } else {                                    # Incomplete /* */
  562.                     next READ;
  563.                 }
  564.             } elsif ($in =~ s/^(\/)//) {                    # /...
  565.                 $out    .= $1;
  566.             } elsif ($in =~ s/^([^\'\"\\\/]+)//) {
  567.                 $out    .= $1;
  568.             } elsif ($^O eq 'linux' &&
  569.                      $file =~ m!(?:^|/)linux/byteorder/pdp_endian\.h$! &&
  570.                      $in   =~ s!\'T KNOW!!) {
  571.                 $out    =~ s!I DON$!I_DO_NOT_KNOW!;
  572.             } else {
  573.                 if ($opt_e) {
  574.                     warn "Cannot parse $file:\n$in\n";
  575.                     $bad_file{$file} = 1;
  576.                     $in = '';
  577.                     $out = undef;
  578.                     last READ;
  579.                 } else {
  580.         die "Cannot parse:\n$in\n";
  581.                 }
  582.             }
  583.         }
  584.  
  585.         last READ if $out =~ /\S/;
  586.     }
  587.  
  588.     return $out;
  589. }
  590.  
  591.  
  592. # Handle recursive subdirectories without getting a grotesquely big stack.
  593. # Could this be implemented using File::Find?
  594. sub next_file
  595. {
  596.     my $file;
  597.  
  598.     while (@ARGV) {
  599.         $file = shift @ARGV;
  600.  
  601.         if ($file eq '-' or -f $file or -l $file) {
  602.             return $file;
  603.         } elsif (-d $file) {
  604.             if ($opt_r) {
  605.                 expand_glob($file);
  606.             } else {
  607.                 print STDERR "Skipping directory `$file'\n";
  608.             }
  609.         } elsif ($opt_a) {
  610.             return $file;
  611.         } else {
  612.             print STDERR "Skipping `$file':  not a file or directory\n";
  613.         }
  614.     }
  615.  
  616.     return undef;
  617. }
  618.  
  619.  
  620. # Put all the files in $directory into @ARGV for processing.
  621. sub expand_glob
  622. {
  623.     my ($directory)  = @_;
  624.  
  625.     $directory =~ s:/$::;
  626.  
  627.     opendir DIR, $directory;
  628.         foreach (readdir DIR) {
  629.             next if ($_ eq '.' or $_ eq '..');
  630.  
  631.             # expand_glob() is going to be called until $ARGV[0] isn't a
  632.             # directory; so push directories, and unshift everything else.
  633.             if (-d "$directory/$_") { push    @ARGV, "$directory/$_" }
  634.             else                    { unshift @ARGV, "$directory/$_" }
  635.         }
  636.     closedir DIR;
  637. }
  638.  
  639.  
  640. # Given $file, a symbolic link to a directory in the C include directory,
  641. # make an equivalent symbolic link in $Dest_dir, if we can figure out how.
  642. # Otherwise, just duplicate the file or directory.
  643. sub link_if_possible
  644. {
  645.     my ($dirlink)  = @_;
  646.     my $target  = eval 'readlink($dirlink)';
  647.  
  648.     if ($target =~ m:^\.\./: or $target =~ m:^/:) {
  649.         # The target of a parent or absolute link could leave the $Dest_dir
  650.         # hierarchy, so let's put all of the contents of $dirlink (actually,
  651.         # the contents of $target) into @ARGV; as a side effect down the
  652.         # line, $dirlink will get created as an _actual_ directory.
  653.         expand_glob($dirlink);
  654.     } else {
  655.         if (-l "$Dest_dir/$dirlink") {
  656.             unlink "$Dest_dir/$dirlink" or
  657.                 print STDERR "Could not remove link $Dest_dir/$dirlink:  $!\n";
  658.         }
  659.  
  660.         if (eval 'symlink($target, "$Dest_dir/$dirlink")') {
  661.             print "Linking $target -> $Dest_dir/$dirlink\n";
  662.  
  663.             # Make sure that the link _links_ to something:
  664.             if (! -e "$Dest_dir/$target") {
  665.                 mkpath("$Dest_dir/$target", 0755) or
  666.                     print STDERR "Could not create $Dest_dir/$target/\n";
  667.             }
  668.         } else {
  669.             print STDERR "Could not symlink $target -> $Dest_dir/$dirlink:  $!\n";
  670.         }
  671.     }
  672. }
  673.  
  674.  
  675. # Push all #included files in $file onto our stack, except for STDIN
  676. # and files we've already processed.
  677. sub queue_includes_from
  678. {
  679.     my ($file)    = @_;
  680.     my $line;
  681.  
  682.     return if ($file eq "-");
  683.  
  684.     open HEADER, $file or return;
  685.         while (defined($line = <HEADER>)) {
  686.             while (/\\$/) { # Handle continuation lines
  687.                 chop $line;
  688.                 $line .= <HEADER>;
  689.             }
  690.  
  691.             if ($line =~ /^#\s*include\s+<(.*?)>/) {
  692.                 push(@ARGV, $1) unless $Is_converted{$1};
  693.             }
  694.         }
  695.     close HEADER;
  696. }
  697.  
  698.  
  699. # Determine include directories; $Config{usrinc} should be enough for (all
  700. # non-GCC?) C compilers, but gcc uses an additional include directory.
  701. sub inc_dirs
  702. {
  703.     my $from_gcc    = `$Config{cc} -v 2>&1`;
  704.     $from_gcc       =~ s:^Reading specs from (.*?)/specs\b.*:$1/include:s;
  705.  
  706.     length($from_gcc) ? ($from_gcc, $Config{usrinc}) : ($Config{usrinc});
  707. }
  708.  
  709.  
  710. # Create "_h2ph_pre.ph", if it doesn't exist or was built by a different
  711. # version of h2ph.
  712. sub build_preamble_if_necessary
  713. {
  714.     # Increment $VERSION every time this function is modified:
  715.     my $VERSION     = 2;
  716.     my $preamble    = "$Dest_dir/_h2ph_pre.ph";
  717.  
  718.     # Can we skip building the preamble file?
  719.     if (-r $preamble) {
  720.         # Extract version number from first line of preamble:
  721.         open  PREAMBLE, $preamble or die "Cannot open $preamble:  $!";
  722.             my $line = <PREAMBLE>;
  723.             $line =~ /(\b\d+\b)/;
  724.         close PREAMBLE            or die "Cannot close $preamble:  $!";
  725.  
  726.         # Don't build preamble if a compatible preamble exists:
  727.         return if $1 == $VERSION;
  728.     }
  729.  
  730.     my (%define) = _extract_cc_defines();
  731.  
  732.     open  PREAMBLE, ">$preamble" or die "Cannot open $preamble:  $!";
  733.         print PREAMBLE "# This file was created by h2ph version $VERSION\n";
  734.  
  735.         foreach (sort keys %define) {
  736.             if ($opt_D) {
  737.                 print PREAMBLE "# $_=$define{$_}\n";
  738.             }
  739.  
  740.             if ($define{$_} =~ /^(\d+)U?L{0,2}$/i) {
  741.                 print PREAMBLE
  742.                     "unless (defined &$_) { sub $_() { $1 } }\n\n";
  743.             } elsif ($define{$_} =~ /^\w+$/) {
  744.                 print PREAMBLE
  745.                     "unless (defined &$_) { sub $_() { &$define{$_} } }\n\n";
  746.             } else {
  747.                 print PREAMBLE
  748.                     "unless (defined &$_) { sub $_() { \"",
  749.                     quotemeta($define{$_}), "\" } }\n\n";
  750.             }
  751.         }
  752.     close PREAMBLE               or die "Cannot close $preamble:  $!";
  753. }
  754.  
  755.  
  756. # %Config contains information on macros that are pre-defined by the
  757. # system's compiler.  We need this information to make the .ph files
  758. # function with perl as the .h files do with cc.
  759. sub _extract_cc_defines
  760. {
  761.     my %define;
  762.     my $allsymbols  = join " ",
  763.         @Config{'ccsymbols', 'cppsymbols', 'cppccsymbols'};
  764.  
  765.     # Split compiler pre-definitions into `key=value' pairs:
  766.     foreach (split /\s+/, $allsymbols) {
  767.         /(.+?)=(.+)/ and $define{$1} = $2;
  768.  
  769.         if ($opt_D) {
  770.             print STDERR "$_:  $1 -> $2\n";
  771.         }
  772.     }
  773.  
  774.     return %define;
  775. }
  776.  
  777.  
  778. 1;
  779.  
  780. ##############################################################################
  781. __END__
  782.  
  783. =head1 NAME
  784.  
  785. h2ph - convert .h C header files to .ph Perl header files
  786.  
  787. =head1 SYNOPSIS
  788.  
  789. B<h2ph [-d destination directory] [-r | -a] [-l] [headerfiles]>
  790.  
  791. =head1 DESCRIPTION
  792.  
  793. I<h2ph>
  794. converts any C header files specified to the corresponding Perl header file
  795. format.
  796. It is most easily run while in /usr/include:
  797.  
  798.     cd /usr/include; h2ph * sys/*
  799.  
  800. or
  801.  
  802.     cd /usr/include; h2ph * sys/* arpa/* netinet/*
  803.  
  804. or
  805.  
  806.     cd /usr/include; h2ph -r -l .
  807.  
  808. The output files are placed in the hierarchy rooted at Perl's
  809. architecture dependent library directory.  You can specify a different
  810. hierarchy with a B<-d> switch.
  811.  
  812. If run with no arguments, filters standard input to standard output.
  813.  
  814. =head1 OPTIONS
  815.  
  816. =over 4
  817.  
  818. =item -d destination_dir
  819.  
  820. Put the resulting B<.ph> files beneath B<destination_dir>, instead of
  821. beneath the default Perl library location (C<$Config{'installsitsearch'}>).
  822.  
  823. =item -r
  824.  
  825. Run recursively; if any of B<headerfiles> are directories, then run I<h2ph>
  826. on all files in those directories (and their subdirectories, etc.).  B<-r>
  827. and B<-a> are mutually exclusive.
  828.  
  829. =item -a
  830.  
  831. Run automagically; convert B<headerfiles>, as well as any B<.h> files
  832. which they include.  This option will search for B<.h> files in all
  833. directories which your C compiler ordinarily uses.  B<-a> and B<-r> are
  834. mutually exclusive.
  835.  
  836. =item -l
  837.  
  838. Symbolic links will be replicated in the destination directory.  If B<-l>
  839. is not specified, then links are skipped over.
  840.  
  841. =item -h
  842.  
  843. Put ``hints'' in the .ph files which will help in locating problems with
  844. I<h2ph>.  In those cases when you B<require> a B<.ph> file containing syntax
  845. errors, instead of the cryptic
  846.  
  847.     [ some error condition ] at (eval mmm) line nnn
  848.  
  849. you will see the slightly more helpful
  850.  
  851.     [ some error condition ] at filename.ph line nnn
  852.  
  853. However, the B<.ph> files almost double in size when built using B<-h>.
  854.  
  855. =item -D
  856.  
  857. Include the code from the B<.h> file as a comment in the B<.ph> file.
  858. This is primarily used for debugging I<h2ph>.
  859.  
  860. =item -Q
  861.  
  862. ``Quiet'' mode; don't print out the names of the files being converted.
  863.  
  864. =back
  865.  
  866. =head1 ENVIRONMENT
  867.  
  868. No environment variables are used.
  869.  
  870. =head1 FILES
  871.  
  872.  /usr/include/*.h
  873.  /usr/include/sys/*.h
  874.  
  875. etc.
  876.  
  877. =head1 AUTHOR
  878.  
  879. Larry Wall
  880.  
  881. =head1 SEE ALSO
  882.  
  883. perl(1)
  884.  
  885. =head1 DIAGNOSTICS
  886.  
  887. The usual warnings if it can't read or write the files involved.
  888.  
  889. =head1 BUGS
  890.  
  891. Doesn't construct the %sizeof array for you.
  892.  
  893. It doesn't handle all C constructs, but it does attempt to isolate
  894. definitions inside evals so that you can get at the definitions
  895. that it can translate.
  896.  
  897. It's only intended as a rough tool.
  898. You may need to dicker with the files produced.
  899.  
  900. You have to run this program by hand; it's not run as part of the Perl
  901. installation.
  902.  
  903. Doesn't handle complicated expressions built piecemeal, a la:
  904.  
  905.     enum {
  906.         FIRST_VALUE,
  907.         SECOND_VALUE,
  908.     #ifdef ABC
  909.         THIRD_VALUE
  910.     #endif
  911.     };
  912.  
  913. Doesn't necessarily locate all of your C compiler's internally-defined
  914. symbols.
  915.  
  916. =cut
  917.  
  918.